home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Programming Tools / XCMDs / recvPort.p < prev    next >
Encoding:
Text File  |  1987-08-17  |  1.6 KB  |  74 lines  |  [TEXT/ttxt]

  1. {$R-}
  2.  
  3. (*
  4.     recvSPort(port number) -- Return a character from the serial port.
  5.     By Harry Chesley.  DO NOT call the author!  Contact Apple Developer 
  6.     Support on AppleLink "MacDTS" or on MCI "MacTech".
  7.  
  8.     ©Apple Computer, Inc. 1987
  9.     All Rights Reserved.
  10.  
  11.     To compile and link this file using Macintosh Programmer's Workshop,
  12.  
  13.     pascal -w recvPort.p
  14.     link -m ENTRYPOINT -o HyperCommands -rt XFCN=1 -sn Main=recvSPort recvPort.p.o "{MPW}"Libraries:interface.o
  15.     
  16. *)
  17.  
  18. {$S recvSPort }     { Segment name must be the same as the command name. }
  19.  
  20. unit DummyUnit;
  21.  
  22. interface
  23.  
  24. uses MemTypes, QuickDraw, OSIntf, HyperXCmd;
  25.  
  26. procedure EntryPoint(paramPtr: XCmdPtr);
  27.     
  28. implementation
  29.  
  30. type
  31.  
  32. Str31 = String[31];
  33.  
  34. procedure recvSPort(paramPtr: XCmdPtr); forward;
  35.  
  36. procedure EntryPoint(paramPtr: XCmdPtr);
  37.  
  38.     begin
  39.         recvSPort(paramPtr);
  40.     end;
  41.  
  42. procedure recvSPort(paramPtr: XCmdPtr);
  43.  
  44.     var portNumber: integer;
  45.         inPort: integer;
  46.         str: Str255;
  47.         l: longInt;
  48.  
  49.     {$I XCmdGlue.inc}
  50.  
  51.     procedure Fail(errMsg: Str255); { set theResult and quit }
  52.         begin
  53.             paramPtr^.returnValue := PasToZero(errMsg);
  54.             exit(recvSPort);
  55.         end;
  56.  
  57.     begin
  58.         if paramPtr^.paramCount <> 1 then Fail('parameter count is not 1');
  59.  
  60.         ZeroToPas(paramPtr^.params[1]^,str);        { First parameter is port number. }
  61.         portNumber := StrToNum(str);
  62.         if (portNumber < 1) or (portNumber > 2) then Fail('invalid port number');
  63.  
  64.         if portNumber = 1 then inPort := -6
  65.         else inPort := -8;
  66.         l := 1;
  67.         str[0] := chr(1);
  68.         if FSRead(inPort,l,Ptr(ord4(@str)+1)) <> noErr then Fail('FSRead failed');
  69.         if l <> 1 then str[0] := chr(0);
  70.         paramPtr^.returnValue := PasToZero(str);
  71.     end;
  72.  
  73. end.
  74.